home *** CD-ROM | disk | FTP | other *** search
/ Java Programmer's Toolkit / Java Programmer's Toolkit.iso / applets / collectn / function.jav < prev    next >
Text File  |  1995-10-22  |  838b  |  38 lines

  1. /*
  2.   File: Function.java
  3.  
  4.   Originally written by Doug Lea and released into the public domain. 
  5.   Thanks for the assistance and support of Sun Microsystems Labs, Agorics 
  6.   Inc, Loral, and everyone contributing, testing, and using this code.
  7.  
  8.   History:
  9.   Date     Who                What
  10.   22Oct95  dl@cs.oswego.edu   Created.
  11.  
  12. */
  13.   
  14. package collections;
  15.  
  16. /**
  17.  *
  18.  * Function is a common interface for classes with an arbitrary 
  19.  * function of one Object argument that returns another Object,
  20.  * without throwing any kind of user exception.
  21.  * @author Doug Lea
  22.  * @version 0.93
  23.  *
  24.  * <P> For an introduction to this package see <A HREF="index.html"> Overview </A>.
  25.  *
  26. **/
  27.  
  28.  
  29. public interface Function {
  30.  
  31. /**
  32.  * Execute some function of the argument.
  33. **/
  34.  
  35.   public Object     function(Object obj); 
  36. }
  37.  
  38.